From: Dan Nicolaescu Date: Sat, 14 Mar 2009 16:37:09 +0000 (+0000) Subject: (vc-default-receive-file): The 'register method now X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~1260 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b43cb3bba4af9f3c93a5de0cfbd261b871270250;p=emacs.git (vc-default-receive-file): The 'register method now expects a list, pass a list. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 635bc3a0171..8432ef56d92 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-03-14 Dan Nicolaescu + + * vc.el (vc-default-receive-file): The 'register method now + expects a list, pass a list. + 2009-03-14 Chong Yidong * doc-view.el (doc-view-sentinel): Strip trailing newline from diff --git a/lisp/vc.el b/lisp/vc.el index e9de682285a..85925442821 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2426,7 +2426,7 @@ to provide the `find-revision' operation instead." (defun vc-default-receive-file (backend file rev) "Let BACKEND receive FILE from another version control system." - (vc-call-backend backend 'register file rev "")) + (vc-call-backend backend 'register (list file) rev "")) (defun vc-default-retrieve-tag (backend dir name update) (if (string= name "")